home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / c / pro19 / puts.c < prev    next >
Text File  |  1987-10-04  |  256b  |  10 lines

  1. #define NOCCARGC  /* no argument count passing */
  2. #include stdio.h
  3. /*
  4. ** Write string to standard output. 
  5. */
  6. puts(string) char *string; {
  7.   fputs(string, stdout);
  8.   fputc('\n', stdout);
  9.   }
  10.